home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / pcv06n01.zip / SCRAMBLE.BAT < prev    next >
DOS Batch File  |  1993-06-07  |  543b  |  22 lines

  1. REM HIDE.BAT
  2. @ECHO OFF 
  3. IF (%3)==() GOTO INFO
  4. ENCRYPT "%2" <%1 >%3 
  5. ECHO. 
  6. ECHO HIDE will remove every trace of the file you just hid, 
  7. ECHO except for password-protected information in an encrypted file, 
  8. ECHO unless you enter CTRL-C or CTRL-BREAK now. 
  9. ECHO Press any other key to delete the original file.
  10. ECHO. 
  11. PAUSE >NUL
  12. ECHO SECRET >%1 
  13. DEL %1 
  14. GOTO END
  15. :INFO 
  16. ECHO.
  17. ECHO HIDE uses ENCRYPT.COM to encrypt a file you want to keep secret 
  18. ECHO Use this syntax: 
  19. ECHO HIDE file password encrypted_filename 
  20. ECHO.
  21. :END
  22.